home *** CD-ROM | disk | FTP | other *** search
/ Game.EXE 2005 November / Game.EXE_11_2005_DVD.iso / Flash Games / Robo Farmer / robofarmer.swf / scripts / DefineButton2_747 / BUTTONCONDACTION on(rollOver).as < prev   
Encoding:
Text File  |  2005-09-23  |  302 b   |  13 lines

  1. on(rollOver){
  2.    if(_root.money >= 250)
  3.    {
  4.       _root.description = "Increase maximum health by 10 points. 250$.";
  5.       return undefined;
  6.    }
  7.    if(_root.money <= 249)
  8.    {
  9.       _root.description = "You can\'t afford to increase maximum health. 250$.";
  10.       return undefined;
  11.    }
  12. }
  13.